home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet internetowy / Przegladarki internetowe / Mozilla Seamonkey 1.0.5 pl / seamonkey-1.0.5.pl-PL.win32.installer.exe / CHATZILLA.XPI / bin / chrome / chatzilla.jar / content / chatzilla / menus.xul < prev    next >
Encoding:
Extensible Markup Language  |  2005-06-12  |  5.3 KB  |  152 lines

  1. <?xml version="1.0"?>
  2.  
  3. <!--
  4.    -
  5.    - ***** BEGIN LICENSE BLOCK *****
  6.    - Version: MPL 1.1/GPL 2.0/LGPL 2.1
  7.    -
  8.    - The contents of this file are subject to the Mozilla Public License Version
  9.    - 1.1 (the "License"); you may not use this file except in compliance with
  10.    - the License. You may obtain a copy of the License at
  11.    - http://www.mozilla.org/MPL/
  12.    -
  13.    - Software distributed under the License is distributed on an "AS IS" basis,
  14.    - WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
  15.    - for the specific language governing rights and limitations under the
  16.    - License.
  17.    -
  18.    - The Original Code is The JavaScript Debugger.
  19.    -
  20.    - The Initial Developer of the Original Code is
  21.    - Netscape Communications Corporation.
  22.    - Portions created by the Initial Developer are Copyright (C) 1998
  23.    - the Initial Developer. All Rights Reserved.
  24.    -
  25.    - Contributor(s):
  26.    -   Robert Ginda, <rginda@netscape.com>, original author
  27.    -
  28.    - Alternatively, the contents of this file may be used under the terms of
  29.    - either the GNU General Public License Version 2 or later (the "GPL"), or
  30.    - the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
  31.    - in which case the provisions of the GPL or the LGPL are applicable instead
  32.    - of those above. If you wish to allow use of your version of this file only
  33.    - under the terms of either the GPL or the LGPL, and not to allow others to
  34.    - use your version of this file under the terms of the MPL, indicate your
  35.    - decision by deleting the provisions above and replace them with the notice
  36.    - and other provisions required by the GPL or the LGPL. If you do not delete
  37.    - the provisions above, a recipient may use your version of this file under
  38.    - the terms of any one of the MPL, the GPL or the LGPL.
  39.    -
  40.    - ***** END LICENSE BLOCK ***** -->
  41.  
  42. <!DOCTYPE overlay SYSTEM "chrome://chatzilla/locale/chatzilla.dtd" >
  43.  
  44. <overlay id="chatzilla-menu-overlay"
  45.     xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul">
  46.  
  47.   <overlaytarget id="menu-overlay-target">
  48.  
  49.     <!-- parents for the command manager-managed objects -->
  50.     <keyset id="dynamic-keys"/>
  51.     <popupset id="dynamic-popups"/>
  52.  
  53.     <!-- tooltip thingy -->
  54.     <tooltip id="html-tooltip-node" onpopupshowing="return onTooltip(event);"/>
  55.     <tooltip id="xul-tooltip-node" onpopupshowing="return onTooltip(event);"/>
  56.  
  57.     <!-- Commands -->
  58.     <commandset id="chatzilla-commands">
  59.  
  60.       <!-- Edit commands -->
  61.       <commandset id="selectEditMenuItems"/>
  62.       <commandset id="globalEditMenuItems"/>
  63.       <commandset id="undoEditMenuItems"/>
  64.       <commandset id="clipboardEditMenuItems"/>
  65.       <command id="cmd_undo"/>
  66.       <command id="cmd_redo"/>
  67.       <command id="cmd_cut"/>
  68.       <command id="cmd_copy"/>
  69.       <command id="cmd_paste"/>
  70.       <command id="cmd_delete"/>
  71.       <command id="cmd_selectAll"/>
  72.  
  73.       <!-- Tasks commands, from overlay -->
  74.       <commandset id="tasksCommands"/>
  75.     </commandset>
  76.  
  77.     <!-- Keys -->
  78.  
  79.     <keyset id="chatzillaKeys">
  80.       <key id="key:reloadui" modifiers="accel alt" key="R"
  81.         oncommand="if (typeof cmdReloadUI =='function') cmdReloadUI(); else window.location.href = window.location.href;"/>
  82.  
  83.       <!-- Edit keys -->
  84.       <key id="key_undo"/>
  85.       <key id="key_redo"/>
  86.       <key id="key_cut"/>
  87.       <key id="key_copy"/>
  88.       <key id="key_paste"/>
  89.       <key id="key_delete"/>
  90.       <key id="key_selectAll"/>
  91.  
  92.       <!-- Tasks keys, from overlay -->
  93.       <keyset id="tasksKeys"/>
  94.     </keyset>
  95.  
  96.     <!-- Main menu bar -->
  97.     <toolbox flex="1" id="main-toolbox">
  98.       <menubar id="mainmenu" persist="collapsed"
  99.         grippytooltiptext="&Menubar.tooltip;">
  100.  
  101.         <!-- File menu placeholder, see menus.js -->
  102.         <menu id="mainmenu:file"><menupopup/></menu>
  103.         
  104.         <!-- Edit menu placeholder, see menus.js -->
  105.         <menu id="mainmenu:edit"><menupopup/></menu>
  106.   
  107.         <!-- View menu placeholder, see menus.js -->
  108.         <menu id="mainmenu:view"><menupopup/></menu>
  109.  
  110.         <!-- Tasks menu -->
  111.         <menu id="tasksMenu"/>
  112.  
  113.         <!-- Window menu -->
  114.         <menu id="windowMenu"/>
  115.  
  116.         <!-- Tools menu placeholder, see menus.js -->
  117.         <menu id="mainmenu:tools"><menupopup/></menu>
  118.         
  119.         <!-- Help menu -->
  120.         <!-- Mac expects a help menu with this ID, and there is nothing we can
  121.              do about it. -->
  122.         <menu id="menu_Help"/>
  123.       </menubar>  
  124.  
  125.     </toolbox>  
  126.  
  127.   </overlaytarget>
  128.  
  129.   <!-- Statusbar (hey, it's /almost/ a menu) -->
  130.   <overlaytarget id="statusbar-overlay-target">
  131.     <statusbar class="chromeclass-status" id="status-bar" 
  132.         persist="collapsed" flex="1">
  133.       <statusbarpanel id="component-bar" collapsed="true"/>
  134.       <statusbarpanel id="status-text" label="" flex="1" crop="right"/>
  135.       <statusbarpanel class="statusbarpanel-progress" id="status-progress-panel">
  136.         <progressmeter class="progressmeter-statusbar" id="status-progress-bar" 
  137.             mode="undetermined" value="0"/>
  138.       </statusbarpanel>
  139.       <statusbarpanel id="security-button">
  140.         <label id="security-button-label"/>
  141.         <image id="security-button-image"/>
  142.       </statusbarpanel>
  143. <!--
  144.       <statusbarpanel class="statusbarpanel-iconic" id="offline-status"
  145.         hidden="true" offline="true"/>
  146. -->
  147.     </statusbar>
  148.   </overlaytarget>
  149.  
  150. </overlay>
  151.   
  152.